home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 August / August CD.bin / Shareware / PowerMac / SpriteWorld / Examples / Utils / StringUtils.h < prev   
Encoding:
Text File  |  1993-05-23  |  462 b   |  28 lines  |  [TEXT/KAHL]

  1. ///--------------------------------------------------------------------------------------
  2. // StringUtils.h
  3. ///--------------------------------------------------------------------------------------
  4.  
  5.  
  6. #ifndef __STRINGUTILS__
  7. #define __STRINGUTILS__
  8.  
  9. #ifndef __TYPES__
  10. #include <Types.h>
  11. #endif
  12.  
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18.  
  19. void PStrCpy(Str255 srcStr, Str255 dstStr);
  20. void PStrCat(Str255 srcStr, Str255 dstStr);
  21.  
  22.  
  23. #ifdef __cplusplus
  24. };
  25. #endif
  26. #endif
  27.  
  28.